home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-05-31 | 615 b | 39 lines | [TEXT/MPS ] |
- //
- //
- // cursor.c
- //
- // Cursor handling routines.
- //
- //
- // Author: Nick Thompson & Pablo Fernicola, with thanks to the QuickDraw 3D team
- //
- // Copyright © 1992-95 Apple Computer, Inc., All Rights Reserved
- //
-
- #include "Tumbler_globals.h"
- #include "Tumbler_prototypes.h"
- #include "Tumbler_resources.h"
-
- #include "QD3DView.h"
- #include "QD3DDrawContext.h"
- #include "QD3DPick.h"
-
- #include "Tumbler_cursor.h"
-
-
-
- void AdjustCursor(Point theLoc, RgnHandle theRgn)
- {
- // do nothing for now
- }
-
-
- void GetGlobalMouse(Point *theLoc)
-
- { EventRecord theEvent;
-
- OSEventAvail(0, &theEvent);
- *theLoc = theEvent.where;
- }
-
-